# h5ai

[![](https://wiki.favrep.ch/uploads/images/gallery/2025-05/scaled-1680-/image-1746380521913.png)](https://wiki.favrep.ch/uploads/images/gallery/2025-05/image-1746380521913.png)
```bash
docker volume create h5ai_config
docker volume create h5ai_shared
```
```bash
services:
  h5ai:
    image: awesometic/h5ai
    container_name: cdn_h5ai
    environment:
      - TZ=Europe/Zurich
      - PGID=$GID
      - PUID=$UID
    volumes:
      - h5ai_config:/config
      - h5ai_shared:/h5ai
    ports:
      - '82:80'
    restart: always
    tty: true
    stdin_open: true
networks:
  h5ai_network:
    driver: bridge
    # Permet la communication externe mais isole des autres conteneurs
    internal: false
volumes:
  h5ai_config:
    external: true
  h5ai_shared:
    external: true
```