2023-07-01 20:43:53 +00:00
|
|
|
version: "3.4"
|
|
|
|
|
|
|
|
services:
|
2023-07-02 18:29:27 +00:00
|
|
|
simple-links:
|
2023-07-08 19:49:08 +00:00
|
|
|
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: .
|
2023-07-12 12:55:48 +00:00
|
|
|
container_name: SimpleLinks
|
2023-07-01 21:22:16 +00:00
|
|
|
restart: always
|
2023-07-01 20:43:53 +00:00
|
|
|
ports:
|
|
|
|
- 3000:3000
|
2023-07-02 13:42:18 +00:00
|
|
|
volumes:
|
2023-07-13 09:12:48 +00:00
|
|
|
- ./config.yml:/usr/src/app/config.yml:ro # The application config (Must be created before starting the service)
|
2023-07-12 13:35:49 +00:00
|
|
|
- ./public:/usr/src/app/public:rw # Used for public facing images (eg: avatar and background)
|