simple-links/docker-compose.yml
Fascinated b3be2ee10f
All checks were successful
Publish Docker Image / docker (push) Successful in 1m23s
add container name to docker compose
2023-07-12 13:55:48 +01:00

18 lines
668 B
YAML

version: "3.4"
services:
simple-links:
image: fascinated/simple-links:latest
# Uncomment the following line to build the image yourself
# build: https://git.fascinated.cc/Fascinated/simple-links.git
# or build it locally (you need to clone the repo first):
# build:
# context: .
container_name: SimpleLinks
restart: always
ports:
- 3000:3000
volumes:
- ./config.json:/usr/src/app/config.json:ro # The application config (Must be created before starting the service)
#- ./public:/usr/src/app/public:ro # Used for public facing images (uncomment if you are using your own images - see the public directory)