Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mapping media/ with a volume for Docker #106

Closed
HugoFara opened this issue Apr 4, 2023 · 2 comments
Closed

Mapping media/ with a volume for Docker #106

HugoFara opened this issue Apr 4, 2023 · 2 comments
Labels
docker Anything related to Docker enhancement Develop an existing feature

Comments

@HugoFara
Copy link
Owner

HugoFara commented Apr 4, 2023

Using Docker, an user can create a folder media/ to add it's videos. The problem is that destroying the container will erase this folder. Mapping it to a volume would solve the issue.

@HugoFara HugoFara added enhancement Develop an existing feature docker Anything related to Docker labels Apr 4, 2023
@parradam
Copy link

parradam commented Apr 4, 2023

Here is the docker-compose.yml (for LWT 2.0.3):


services:
  mariadb:
    image: mariadb:10.6
    restart: always
    environment:
      - "MARIADB_ROOT_PASSWORD=qwerty"
    volumes:
      - /root/docker-images/lwt/db:/var/lib/mysql
  lwt:
    build:
      dockerfile: Dockerfile
    restart: always
    environment:
      - "MARIADB_SERVER=mariadb"
      - "MARIADB_ROOT_PASSWORD=qwerty"
    volumes:
      - /root/docker-images/lwt/media:/var/www/media
    ports:
      - "50000:80"
    depends_on:
      - mariadb```

@HugoFara
Copy link
Owner Author

HugoFara commented Apr 6, 2023

Thanks a lot for spotting and solving this issue!

HugoFara added a commit to HugoFara/lwt-docker-installer that referenced this issue Apr 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docker Anything related to Docker enhancement Develop an existing feature
Projects
None yet
Development

No branches or pull requests

2 participants