don't create a new volume

This commit is contained in:
knoflook 2024-12-03 16:39:32 +01:00
parent 03797a34db
commit fc846af1e3
2 changed files with 1 additions and 3 deletions

View File

@ -4,8 +4,6 @@ version: "3.8"
services:
app:
user: root
volumes:
- "custom_css:/css"
entrypoint: /docker-entrypoint.sh
configs:
- source: entrypoint_css

View File

@ -1,5 +1,5 @@
#!/bin/sh
cp -f /css/custom.css /web/dist/
cp -f /web/dist/assets/custom.css /web/dist/custom.css
su $(id -un 1000) -s /bin/bash -c 'dumb-init -- ak server'