diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index e462319..77694de 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -28,4 +28,4 @@ jobs: context: . file: ./Dockerfile push: true - tags: ghcr.io/${{ github.repository }}/file-gallery:latest + tags: ghcr.io/${{ github.repository }}/files-gallery:latest diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 1bae481..528a6ae 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -1,6 +1,6 @@ version: '3.8' services: - app: + files_gallery: container_name: files-gallery hostname: files.gallery.local # not used, but without it apache will complain about unknown fqdn on startup build: . diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 27ccc58..5594eba 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -1,6 +1,6 @@ version: '3.8' services: - app: + files_gallery: image: ghcr.io/marcbarry/files-gallery/files-gallery:latest container_name: files-gallery restart: 'unless-stopped'