diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2024-08-01 09:44:04 +0100 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2024-08-01 09:59:26 +0100 |
commit | c146a0447e5b9e107440b86941940b76dd3e53ba (patch) | |
tree | 327cfb58a86e89907075a4dae0072dcf1655129a /docker-compose.yml | |
parent | 04b386b5eec06549c989ed81aaf2eb9b76e49b87 (diff) |
Switch to deploy via Docker Compose
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index a176800..5a8a0d9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,8 @@ volumes: services: gathio: - build: . + container_name: gathio-app + image: ghcr.io/lowercasename/gathio:latest links: - mongo ports: @@ -14,6 +15,7 @@ services: # The path to Gathio's user-uploaded event images folder - change to match your system - ./gathio-docker/images:/app/public/events mongo: + container_name: gathio-db image: mongo:latest volumes: - mongodb_data_db:/data/db |