mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-22 17:26:45 +00:00
26 lines
533 B
YAML
26 lines
533 B
YAML
version: "3"
|
|
services:
|
|
url:
|
|
image: sintan1729/simply-shorten:latest
|
|
restart: unless-stopped
|
|
container_name: simply-shorten
|
|
ports:
|
|
- 4567:4567
|
|
environment:
|
|
# Change if you want to mount the database somewhere else
|
|
# - db_url=/urls.sqlite
|
|
- username=admin
|
|
- password=$3CuReP4S$W0rD
|
|
volumes:
|
|
- db:/urls.sqlite
|
|
networks:
|
|
- proxy
|
|
|
|
volumes:
|
|
db:
|
|
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|