Sign inSign up

alcapone1933/atheos

By alcapone1933

•Updated over 1 year ago

Image
2

2.3K

alcapone1933/atheos repository overview

⁠atheos

⁠Docker CLI

docker run -d \
    --name=atheos \
    -p 8080:80 \
    --restart=always \
    -e TZ=Europe/Berlin \
    -e PHP_memory_limit=128M \
    -e PHP_max_file_uploads=20 \
    -e PHP_post_max_size=8M \
    -e PHP_upload_max_filesize=2M \
    -e PHP_max_input_time=60 \
    -e PHP_max_execution_time=30 \
    -v  atheos_data:/var/www/html \
    -v  atheos_workspace:/var/www/html/workspace \
    alcapone1933/atheos:latest

⁠Docker Compose

version: "3.9"
services:
  atheos:
    image: alcapone1933/atheos:latest
    container_name: atheos
    restart: always
    ports:
      - 8080:80
    environment:
      - TZ=Europe/Berlin
      - PHP_memory_limit=128M
      - PHP_max_file_uploads=20
      - PHP_post_max_size=8M
      - PHP_upload_max_filesize=2M
      - PHP_max_input_time=60
      - PHP_max_execution_time=30
    volumes:
      - data:/var/www/html
      - workspace:/var/www/html/workspace

volumes:
  data:
  workspace:

Tag summary

Content type

Image

Digest

sha256:aacf9f8c9…

Size

147.4 MB

Last updated

over 1 year ago

docker pull alcapone1933/atheos