mirror of
https://github.com/SinTan1729/chhoto-url
synced 2024-12-26 07:38:36 -06:00
e9cf90cea7
- Updated to Java 14 - A bunch of changes I wanted to do earlier
20 lines
436 B
YAML
20 lines
436 B
YAML
version: "3"
|
|
services:
|
|
url:
|
|
image: draganczukp/simply-shorten
|
|
container_name: url
|
|
environment:
|
|
# Change if you want to mount the database somewhere else
|
|
# - db_url=/urls.sqlite
|
|
- username=admin
|
|
- password=$3CuReP4S$W0rD
|
|
volumes:
|
|
- db:/urls.sqlite
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
db:
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|