Skip to content

Commit 6044b56

Browse files
committed
s!ghcr.io/downunderctf!ghcr.io/frenchroomba
1 parent fb117f1 commit 6044b56

9 files changed

Lines changed: 12 additions & 12 deletions

File tree

vendor/bin-builder/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ this as part of a multi-stage build.
55

66
e.g.
77
```dockerfile
8-
FROM ghcr.io/downunderctf/docker-vendor/bin-builder:ubuntu-18.04 as build
8+
FROM ghcr.io/frenchroomba/docker-vendor/bin-builder:ubuntu-18.04 as build
99

1010
WORKDIR /build
1111
COPY mysource.c .
1212
RUN gcc -o chal mysource.c
1313

1414

15-
FROM ghcr.io/downunderctf/docker-vendor/nsjail:ubuntu-18.04
15+
FROM ghcr.io/frenchroomba/docker-vendor/nsjail:ubuntu-18.04
1616

1717
COPY --from=build /build/chal /home/ctf/chal/pwn
1818

vendor/ethcompiler/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ building blockchain challenges for deployment.
66
## Example usage
77

88
```dockerfile
9-
FROM ghcr.io/downunderctf/docker-vendor/ethcompiler:foundry as build
9+
FROM ghcr.io/frenchroomba/docker-vendor/ethcompiler:foundry as build
1010

1111
COPY contracts/ src/
1212
COPY foundry.toml foundry.toml

vendor/nsjail/dockerfiles/Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG DEBIAN_VERSION
22
ARG LIBPROTOBUF_VERSION
33

44

5-
FROM ghcr.io/downunderctf/docker-vendor/bin-builder:debian-$DEBIAN_VERSION AS base
5+
FROM ghcr.io/frenchroomba/docker-vendor/bin-builder:debian-$DEBIAN_VERSION AS base
66

77
FROM base as build
88
ARG LIBPROTOBUF_VERSION

vendor/nsjail/dockerfiles/Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG UBUNTU_VERSION
22
ARG LIBPROTOBUF_VERSION
33

44

5-
FROM ghcr.io/downunderctf/docker-vendor/bin-builder:ubuntu-$UBUNTU_VERSION AS base
5+
FROM ghcr.io/frenchroomba/docker-vendor/bin-builder:ubuntu-$UBUNTU_VERSION AS base
66

77
FROM base as build
88
ARG LIBPROTOBUF_VERSION

vendor/xssbot/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Include the following in your `docker-compose.yml`. By default Marvin listens on
1111
```yaml
1212
services:
1313
xssbot:
14-
image: ghcr.io/downunderctf/docker-vendor/xssbot:chrome
14+
image: ghcr.io/frenchroomba/docker-vendor/xssbot:chrome
1515
privileged: true
1616
# Useful for development
1717
environment:
@@ -71,7 +71,7 @@ You then mount this file into the container from the file system
7171
```yaml
7272
services:
7373
xssbot:
74-
image: ghcr.io/downunderctf/docker-vendor/xssbot:chrome
74+
image: ghcr.io/frenchroomba/docker-vendor/xssbot:chrome
7575
volumes:
7676
- ./cookiejar:/var/marvin/auth/cookiejar
7777
```
@@ -85,7 +85,7 @@ services:
8585
mychal:
8686
image: ...
8787
xssbot:
88-
image: ghcr.io/downunderctf/docker-vendor/xssbot:chrome
88+
image: ghcr.io/frenchroomba/docker-vendor/xssbot:chrome
8989
environment:
9090
- OUTBOUND_AUTH_METHOD: http-get
9191
- OUTBOUND_AUTH_HTTP_GET_URL: http://external.chal.address/admin?token=abcd

vendor/xssbot/context/examples/authCookieJar/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
marvin:
5-
image: ghcr.io/downunderctf/docker-vendor/xssbot:chrome
5+
image: ghcr.io/frenchroomba/docker-vendor/xssbot:chrome
66
privileged: true
77
environment:
88
NODE_ENVIRONMENT: development # Remove me for prod

vendor/xssbot/context/examples/authHttpGet/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
marvin:
5-
image: ghcr.io/downunderctf/docker-vendor/xssbot:chrome
5+
image: ghcr.io/frenchroomba/docker-vendor/xssbot:chrome
66
privileged: true
77
environment:
88
NODE_ENVIRONMENT: development # Remove me for prod

vendor/xssbot/context/examples/requireAuthToMarvin/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
marvin:
5-
image: ghcr.io/downunderctf/docker-vendor/xssbot:chrome
5+
image: ghcr.io/frenchroomba/docker-vendor/xssbot:chrome
66
privileged: true
77
environment:
88
NODE_ENVIRONMENT: development # Remove me for prod

vendor/xssbot/context/examples/simple/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
marvin:
5-
image: ghcr.io/downunderctf/docker-vendor/xssbot:chrome
5+
image: ghcr.io/frenchroomba/docker-vendor/xssbot:chrome
66
privileged: true
77
environment:
88
NODE_ENVIRONMENT: development # Remove me fro prod

0 commit comments

Comments
 (0)