Shaarli See merge request oxyta.net/docker-atelier!12
@@ -0,0 +1,13 @@
+# Shaarli
+
+https://www.shaarli.fr/
+## Deploy
+```
+docker-compose up -d
+## First login
+Go to your web browser and define the login and password.
+You are done !
@@ -0,0 +1,21 @@
+version: '3'
+networks:
+ web:
+ external: true
+services:
+ app:
+ image: shaarli/shaarli:latest
+ restart: unless-stopped
+ volumes:
+ - data:/var/www/shaarli/data
+ labels:
+ traefik.enable: "true"
+ traefik.frontend.rule: "Host: links.${CHATONS_DOMAIN:-localhost}, www.links.${CHATONS_DOMAIN:-localhost}"
+ networks:
+ - web
+ - default
+volumes:
+ data: