diff options
author | 2020-11-15 15:11:09 +0100 | |
---|---|---|
committer | 2020-11-15 15:11:09 +0100 | |
commit | 244a72f6d716e3b0f4f5d2059a754a6abbeca673 (patch) | |
tree | d436e6a3bc93aad28650be9f681f2d2a8ff17636 | |
parent | Remove DockerHub from GitHub Actions (diff) |
Use GHCR for the site container in docker-compose
The docker-compose file should pull the site container from the GitHub
Container Registry instead of DockerHub, as the latter will not receive
new container images.
Snekbox currently still pulls from DockerHub as it's not yet migrated to
GHCR.
Signed-off-by: Sebastiaan Zeeff <[email protected]>
-rw-r--r-- | docker-compose.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 8be5aac0e..dc89e8885 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,7 +26,7 @@ services: privileged: true web: - image: pythondiscord/site:latest + image: ghcr.io/python-discord/site:latest command: ["run", "--debug"] networks: default: |