mirror of
				https://github.com/tborychowski/self-hosted-cookbook.git
				synced 2025-11-04 07:37:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# SeaTable
 | 
						|
- Simple like Excel, powerful like a database (free up to 3 users).
 | 
						|
- Docker container doesn't work (as per the link below)
 | 
						|
 | 
						|
<br>
 | 
						|
 | 
						|
- [Homepage](https://seatable.io/)
 | 
						|
- [Docs](https://manual.seatable.io/docker/Developer-Edition/Deploy%20SeaTable-DE%20with%20Docker/#installing-docker-compose)
 | 
						|
 | 
						|
 | 
						|
 ## docker-compose.yml
 | 
						|
 That this didn't work for me at the time of testing.
 | 
						|
```yml
 | 
						|
---
 | 
						|
version: '2.0'
 | 
						|
services:
 | 
						|
  db:
 | 
						|
    image: mariadb:10.5
 | 
						|
    container_name: seatable-mysql
 | 
						|
    environment:
 | 
						|
      - MYSQL_ROOT_PASSWORD=PASSWORD
 | 
						|
      - MYSQL_LOG_CONSOLE=true
 | 
						|
    volumes:
 | 
						|
      - ./db:/var/lib/mysql
 | 
						|
 | 
						|
  memcached:
 | 
						|
    image: memcached:1.5.6
 | 
						|
    container_name: seatable-memcached
 | 
						|
    entrypoint: memcached -m 256
 | 
						|
 | 
						|
  redis:
 | 
						|
    image: redis:5.0.7
 | 
						|
    container_name: seatable-redis
 | 
						|
 | 
						|
  seatable:
 | 
						|
    image: seatable/seatable-developer:latest
 | 
						|
    container_name: seatable
 | 
						|
    ports:
 | 
						|
      - "3123:80"
 | 
						|
      # - "443:443"
 | 
						|
    volumes:
 | 
						|
      - ./data:/shared
 | 
						|
    environment:
 | 
						|
      - DB_HOST=db
 | 
						|
      - DB_ROOT_PASSWD=PASSWORD
 | 
						|
      - SEATABLE_SERVER_HOSTNAME=example.seatable.com # Specifies your host name.
 | 
						|
      - TIME_ZONE=Europe/Dublin
 | 
						|
    depends_on:
 | 
						|
      - db
 | 
						|
      - memcached
 | 
						|
      - redis
 | 
						|
```
 |